home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / machserver / notes / old.new / attachRelease < prev    next >
Encoding:
Text File  |  1991-06-22  |  617 b   |  23 lines

  1. # call tree for block device attach/release routines.
  2. blockDevAttach
  3.   Dev_BlockDeviceAttach
  4.     DevRawBlockDevOpen
  5.       (dev switch table)
  6.       DevRawBlockDevReopen
  7. releaseProc
  8.   Dev_BlockDeviceRelease
  9.     DevRawBlockDevClose
  10.       (dev switch table)
  11.   DevScsiReleaseDevice
  12.     devSCSIDisk.c:ReleaseProc    # set in DevScsiDiskAttach
  13.                 # can have multiple disks on a single
  14.                 # SCSI device, so the code to release
  15.                 # a disk has to potentially release
  16.                 # the device.
  17.     DevScsiDiskAttach
  18.       (dev switch table)
  19.     DevSCSIDeviceClose
  20.       (dev switch table)
  21.     DevSCSITapeClose
  22.       (dev switch table)
  23.